home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / clib37x.lha / CLib37x / source / test_prg / TestExampleLib.c < prev    next >
C/C++ Source or Header  |  1998-03-07  |  762b  |  44 lines

  1. /*
  2. **      $VER: TextExampleLib.c 37.30 (7.3.98)
  3. **
  4. **      Demo program for example.library
  5. **
  6. **      (C) Copyright 1996-98 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #include <exec/types.h>
  11. #include <exec/memory.h>
  12.  
  13. #include <example/example.h>
  14.  
  15. #ifdef __MAXON__
  16. #include <pragma/exec_lib.h>
  17. #include <pragma/example_lib.h>
  18. #else
  19. #include <proto/exec.h>
  20. #include <proto/example.h>
  21. #endif
  22.  
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25.  
  26. struct ExampleBase *ExampleBase = NULL;
  27.  
  28. void main(long argc, char **argv)
  29. {
  30.  ExampleBase = (APTR) OpenLibrary("example.library", 37);
  31.  if(ExampleBase)
  32.   {
  33.    EXF_TestRequest("Test Message", "It works!", "OK");
  34.  
  35.    CloseLibrary((APTR) ExampleBase);
  36.  
  37.    exit(0);
  38.   }
  39.  
  40.  printf("\nLibrary opening failed\n");
  41.  
  42.  exit(20);
  43. }
  44.